home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / pcmagwin.zip / PROCMON < prev    next >
Text File  |  1992-11-13  |  643b  |  23 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. !include <ntwin32.mak>
  4.  
  5. all: procmon.exe
  6.  
  7. # Update the resource if necessary
  8.  
  9. procmon.rbj: procmon.rc procmon.h
  10.     rc -r -fo procmon.res procmon.rc
  11.     cvtres -$(CPU) procmon.res -o procmon.rbj
  12.  
  13. # Update the object file if necessary
  14.  
  15. procmon.obj: procmon.c procmon.h
  16.     $(cc) $(cdebug) $(cflags) $(cvars) procmon.c
  17.  
  18. # Update the executable file if necessary, and if so, add the resource back in.
  19.  
  20. procmon.exe: procmon.obj procmon.rbj
  21.     $(cvtobj) $(cvtdebug) *.obj
  22.     $(link) $(linknodebug) $(guiflags) -out:procmon.exe procmon.obj procmon.rbj $(guilibs) advapi32.lib
  23.